home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 2
/
LSD and 17bit Compendium Deluxe - Volume II.iso
/
a
/
prog
/
asmsrc
/
thesource-7.lha
/
Source
/
polyfit.lha
/
polyfit
/
fit.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-05-04
|
314b
|
26 lines
#include <stdio.h>
#include <math.h>
struct point
{
double X;
double Y;
};
typedef struct point point;
typedef point *points;
typedef double matelm;
typedef matelm *matrow;
typedef matrow *matrix;
typedef char *pointer;
extern char *calloc();
matrix MatInit();
double MatInv();
pointer Calloc();